home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19960715-19961006 / 000291_news@columbia.edu _Sat Aug 31 17:08:16 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: news@columbia.edu
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30]) by watsun.cc.columbia.edu (8.7.5/8.7.3) with ESMTP id RAA06779 for <kermit.misc@watsun.cc.columbia.edu>; Sat, 31 Aug 1996 17:08:15 -0400 (EDT)
  3. Received: (from news@localhost) by newsmaster.cc.columbia.edu (8.7.5/8.7.3) id RAA05940 for kermit.misc@watsun; Sat, 31 Aug 1996 17:08:14 -0400 (EDT)
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: ckermit: too much disk access..
  8. Date: 31 Aug 1996 21:07:54 GMT
  9. Organization: Columbia University
  10. Lines: 38
  11. Message-ID: <50a9ja$k25@apakabar.cc.columbia.edu>
  12. References: <506ara$4c5@crl.crl.com> <5071j7$qtd@apakabar.cc.columbia.edu> <50a1pj$mt7@crl.crl.com>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14.  
  15. In article <50a1pj$mt7@crl.crl.com>, Tony Gonzalez <oak@crl.com> wrote:
  16. : Frank da Cruz (fdc@watsun.cc.columbia.edu) wrote:
  17. : : In article <506ara$4c5@crl.crl.com>, Tony Gonzalez <oak@crl.com> wrote:
  18. : : : I usually spin down my hard drive, but everytime I hangup and dial
  19. : : : again, even to the same place, my hard drive is accessed.  Does anyone
  20. : : : know how I might stop this?  Is there some kind of information being
  21. : : : logged to disk which I can disable?
  22. : : : 
  23. : : When you give a DIAL command to C-Kermit, it looks in your dialing
  24. : : directory.  If you tell it you don't have a dialing directory, it won't
  25. : : look:
  26. : :
  27. : :   set dial directory
  28. : :
  29. : : (i.e. give the "set dial directory" command with no filename).
  30. : I think there's something else going on also because when I disconnect
  31. : from a call it accesses my hard drive.  It may be a unix thing
  32. : I suppose - I'm using Linux.
  33. Nothing springs to mind, unless you had a session log open -- but you would
  34. have said that, right?  So I can only guess that when you end a CONNECT
  35. session, and the lower CONNECT fork is killed, that Linux frees some swap 
  36. space, which requires Linux to touch the disk.
  37.  
  38.  (Note: This -- and a great many other nasty things -- could perhaps be 
  39.  avoided if the UNIX C-Kermit CONNECT command were done with threads rather
  40.  than forks, but threads aren't portable.)
  41.  
  42. : I just may dump the ckermit executable into a ramdrive just to keep
  43. : it from trying to get at my hard drive....that's how I ran my terminal
  44. : program in msdos.
  45. But that would reduce the amount of main memory available for running
  46. applications, and thus *increase* the need for swap space, no?  And therefore
  47. increase the amount of times the disk is touched.
  48.  
  49. - Frank